body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 5px 20px;
    text-align: center;
}

.top-bar-item {
    flex: 1;
    margin: 0 10px;
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-form input[type="text"] {
    padding: 5px;
    border: none;
    border-radius: 4px;
    width: 200px;
}

.search-form button {
    padding: 5px 10px;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    color: #333;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #f0f0f0;
}

header {
    background-color: #156cb7;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #333;
}

nav a {
    color: rgb(255, 255, 255);
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    background-color: #156cb7;
}

.hero {
    background-image: url("banner_home_border.png"); /* Zorg dat je hier een afbeelding van de winkel of dieren invoegt, let hierbij op dat je / gebruikt i.p.v. \. Dat is het gekut met CSS */
    background-size: cover;
    background-position: center;
    height: 275px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 20px;
    font-weight: 100;
    line-height: 0%;
}

h6 {
    font-size: 30px;
    font-weight: 100;
    line-height: 0%;
}

.h7 {
    font-size: 20px; /* Lettergrootte kleiner maken */
    font-weight: normal; /* Gewoon font, niet vetgedrukt */
    color: #333; /* Grijs kleurtje voor subtiele tekst */
    margin-top: 10px; /* Ruimte boven de opmerking */
}

h8 {
    font-size: 20px; /* Lettergrootte kleiner maken */
    font-weight: normal; /* Gewoon font, niet vetgedrukt */
    color: #333; /* Grijs kleurtje voor subtiele tekst */
    margin-top: 10px; /* Ruimte boven de opmerking */
}

.photo-collage {
    position: relative;
    height: 1915px;
    width: 1000px;
}
  
.photo-collage img {
    position: absolute;
    width: normal;
    height: normal;
    object-fit: cover;
}
  
/* Slider Container */
.slider {
    position: relative;
    width: 350px;
    height: 295px;
    overflow: hidden;
    margin: 0 auto;
  }
  
  /* Hide Radio Buttons */
  input[type="radio"] {
    display: none;
  }
  
  /* Slides */
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%; /* 2 slides -> 200% breed */
  }
  
  .slide {
    width: 50%; /* Iedere slide is 50% */
  }
  
  .slide img {
    display: block;
  }
  
  /* Change slide position based on selected radio */
  #slide1:checked ~ .slides {
    transform: translateX(0%);
  }
  
  #slide2:checked ~ .slides {
    transform: translateX(-50%);
  }
  
/* Navigation (arrows) */
.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
  }
  
  label.prev,
  label.next {
    cursor: pointer;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 20px;
    border-radius: 50%;
    text-align: center;
  }
  
  label.prev:hover,
  label.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Hide non-relevant labels */
  #slide1:checked ~ .navigation label.prev:nth-of-type(1),
  #slide2:checked ~ .navigation label.prev:nth-of-type(2),
  #slide3:checked ~ .navigation label.prev:nth-of-type(3) {
    display: block;
  }
  
  #slide1:checked ~ .navigation label.next:nth-of-type(2),
  #slide2:checked ~ .navigation label.next:nth-of-type(3),
  #slide3:checked ~ .navigation label.next:nth-of-type(1) {
    display: block;
  }

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    background-color: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
}

.product-card h3 {
    margin: 10px 0;
    font-size: 1.5em;
}

.product-card p {
    color: #666;
    margin-bottom: 15px;
}

.product-card button {
    background-color: #156cb7;;
    color: white;
    border: dotted;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    width: 100px;
    height: 50px;
}

.product-card button:hover {
    background-color: #3f7fb7;;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.image-container {
    flex: 1;
    margin-right: 20px;
}

.image-container img {
    max-width: 100%;
    border-radius: 8px;
}

.text-container {
    flex: 2;
}

.text-container h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.text-container p {
    font-size: 1.1em;
    color: #666;
}

.info-block {
    background-color: white;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    margin-top: 0;
}

.no-space {
    margin: 0;
    padding: 0;
    list-style-type: none; /* Optioneel, om geen opsommingstekens te tonen */
  }
  
  .no-space li {
    margin: 0;
    padding: 0;
}

/* Styling voor de algemene titel */
.general-title {
    text-align: none;
    margin-bottom: 20px; /* Ruimte onder de titel */
  }
  
  .general-title h1 {
    font-size: 35px; /* Grotere lettergrootte voor de titel */
    font-weight: bold; /* Vetgedrukte titel */
    color: #333; /* Donkere kleur voor de tekst */
    margin: 0; /* Verwijder standaard marge */
}

/* Styling voor de tekstblok-container */
.text-block {
    display: flex; /* Flexbox om kolommen naast elkaar te plaatsen */
    gap: 20px; /* Ruimte tussen de kolommen */
    margin: 20px auto; /* Centraal plaatsen met marge */
    max-width: 900px; /* Maximale breedte van het tekstblok */
  }
  
  /* Styling voor individuele kolommen */
  .column {
    flex: 1; /* Zorgt dat beide kolommen even groot zijn */
    padding: 10px; /* Ruimte binnen de kolom */
    background-color: #f5f5f5; /* Zachtgrijze achtergrond */
    border: 1px solid #ddd; /* Dunne rand om de kolommen */
    border-radius: 8px; /* Afgeronde hoeken */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Lichte schaduw */
    font-family: Arial, sans-serif;
  }
  
  /* Kopteksten binnen de kolommen */
  .column h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }
  
  /* Paragrafen binnen de kolommen */
  .column p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
  
.map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
    max-width: 700px;
    text-align: center;
  }
  
  iframe {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .map-link a {
    text-decoration: none;
    font-size: 16px;
    color: #007bff;
  }
  
  .map-link a:hover {
    color: #0056b3;
    text-decoration: underline;
} 

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    margin-bottom: 20px;
}

.footer-item {
    flex: 1;
    padding: 0 10px;
}

.footer-item h4 {
    margin-top: 0;
}

.footer-bottom {
    background-color: #333;
    padding: 10px 0;
}

.footer-bottom p {
    margin: 0;
}

.email-link {
    color: #fff;
}
